home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-27 | 1.2 KB | 57 lines |
- #Makefile for the amiga port of origami
- #Version 1.6.92.1
- #
- SC= sc
- SLINK= slink
- OML= oml
- #
- #FLAGS1 : compiler options for compiler behaviour
- FLAGS1= ANSI NOICONS STRCON WARNVOIDRETURN IGNORE=104
- #
- #FLAGS2 : include options
- FLAGS2= IDIR=origami:
- #
- #FLAGS3 : define options
- FLAGS3= DEF=MOUSY DEF=LIB_COMPILE DEF=AMIGA DEF=REGEXP DEF=RE_CONF
- #
- #FLAGS4 : additional options
- FLAGS4= OPTIMIZE OptComp=0 OptInl OptInlocal OptTime
- #FLAGS4= PROFILE
- #
- #DEBUG_FLAGS : define DEBUG for DEGUB usage
- #DEBUG_FLAGS= DEBUG=symbolflush
- #DEB_LD_FLAGS= ADDSYM
-
- SCFLAGS= ResOpt $(FLAGS1) $(FLAGS2) $(FLAGS3) $(FLAGS4) $(DEBUG_FLAGS)
-
- .c.o:
- $(SC) $(SCFLAGS) $*
-
- #{{{}}}
- #{{{ OBJS
- OBJS= /amiga/src/dir_name.o /amiga/src/getsysfile.o \
- /amiga/src/amigafileio.o \
- filetyp.o rcread.o \
- rcwrite.o refcodetag.o refcomp.o refdecodetg.o refdecomp.o \
- bregex.o
- #}}}
-
- #{{{ -> all
- all: orilib.lib
- #}}}
-
- #{{{ orilib.lib
- orilib.lib: $(OBJS)
- $(OML) orilib.lib r $(OBJS)
- #}}}
-
- #{{{ -> reset
- reset: clean
- -delete orilib.lib smakefile
- #}}}
-
- #{{{ -> clean
- clean:
- -delete \#?.o \#?.lnk \#?.tmp \#?.info
- #}}}
-